html ngfor with index

62

html ngfor with index -

<ul>
    <li *ngFor="let item of items; let i = index" [attr.data-index]="i">
        {{item}}
    </li>
</ul>

Comments

Submit
0 Comments